BeginInvoke(Delegate,Object[]) Method
In This Topic
Syntax
'Declaration
<System.ComponentModel.EditorBrowsableAttribute(EditorBrowsableState.Advanced)>
Public Overloads Function BeginInvoke( _
ByVal As System.Delegate, _
ByVal ParamArray () As System.Object _
) As System.IAsyncResult
'Usage
Dim instance As LicenseDialog
Dim method As System.Delegate
Dim args() As System.Object
Dim value As System.IAsyncResult
value = instance.BeginInvoke(method, args)
[System.ComponentModel.EditorBrowsable(EditorBrowsableState.Advanced)]
public System.IAsyncResult BeginInvoke(
System.Delegate ,
params System.object[]
)
public function BeginInvoke(
: System.Delegate;
params : System.TObjectarray of
): System.IAsyncResult;
System.ComponentModel.EditorBrowsableAttribute(EditorBrowsableState.Advanced)
public function BeginInvoke(
: System.Delegate,
: System.Object[]
) : System.IAsyncResult;
[System.ComponentModel.EditorBrowsable(EditorBrowsableState.Advanced)]
public: System.IAsyncResult* BeginInvoke(
System.Delegate* ,
params System.Object*[]*
)
[System.ComponentModel.EditorBrowsable(EditorBrowsableState.Advanced)]
public:
System.IAsyncResult^ BeginInvoke(
System.Delegate^ ,
... System.array<Object^>^
)
Parameters
- method
- args
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also